Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Common Namespace / StructList<T> Class / AddArray Method
The array whose elements should be added to the end of the StructList<T>.
The zero-based index of the first element in the array to add.
The number of elements to add.

In This Topic
    AddArray Method
    In This Topic
    Adds the elements of the specified array to the end of the StructList<T>.
    Syntax
    'Declaration
     
    Public Sub AddArray( _
       ByVal array() As T, _
       ByVal arrayIndex As System.Integer, _
       ByVal count As System.Integer _
    ) 
    public void AddArray( 
       T[] array,
       System.int arrayIndex,
       System.int count
    )

    Parameters

    array
    The array whose elements should be added to the end of the StructList<T>.
    arrayIndex
    The zero-based index of the first element in the array to add.
    count
    The number of elements to add.
    See Also